home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / PickTest / TetrahedronTA.java.z / TetrahedronTA.java
Encoding:
Java Source  |  2003-08-08  |  3.1 KB  |  96 lines

  1. /*
  2.  *    @(#)TetrahedronTA.java 1.8 02/04/01 15:03:46
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import javax.media.j3d.*;
  41. import javax.vecmath.*;
  42.  
  43. class TetrahedronTA extends TriangleArray {
  44.  
  45.   TetrahedronTA() {
  46.     super(12, GeometryArray.COORDINATES | GeometryArray.COLOR_3);  
  47.     
  48.     Point3f verts[] = new Point3f[4];
  49.     Color3f colors[] = new Color3f[4];
  50.     
  51.     verts[0] = new Point3f(1.0f,1.0f,1.0f);
  52.     verts[1] = new Point3f(1.0f,-1.0f,-1.0f);
  53.     verts[2] = new Point3f(-1.0f,-1.0f,1.0f);
  54.     verts[3] = new Point3f(-1.0f,1.0f,-1.0f);
  55.  
  56.     colors[0] = new Color3f(1.0f, 0.0f, 0.0f);
  57.     colors[1] = new Color3f(0.0f, 1.0f, 0.0f);
  58.     colors[2] = new Color3f(0.0f, 0.0f, 1.0f);
  59.     colors[3] = new Color3f(1.0f, 1.0f, 0.0f);
  60.     
  61.     Point3f pnts[] = new Point3f[12];
  62.     Color3f clrs[] = new Color3f[12];
  63.  
  64.     pnts[0] = verts[2];
  65.     clrs[0] = colors[0];
  66.     pnts[1] = verts[1];
  67.     clrs[1] = colors[0];
  68.     pnts[2] = verts[0];
  69.     clrs[2] = colors[0];
  70.     
  71.     pnts[3] = verts[3];
  72.     clrs[3] = colors[1];
  73.     pnts[4] = verts[2];
  74.     clrs[4] = colors[1];
  75.     pnts[5] = verts[0];
  76.     clrs[5] = colors[1];
  77.  
  78.     pnts[6] = verts[1];
  79.     clrs[6] = colors[2];    
  80.     pnts[7] = verts[2];
  81.     clrs[7] = colors[2];
  82.     pnts[8] = verts[3];
  83.     clrs[8] = colors[2];
  84.  
  85.     pnts[9] = verts[1];
  86.     clrs[9] = colors[3];
  87.     pnts[10] = verts[3];
  88.     clrs[10] = colors[3];
  89.     pnts[11] = verts[0];
  90.     clrs[11] = colors[3];
  91.     
  92.     setCoordinates(0, pnts);
  93.     setColors(0, clrs);
  94.   }
  95. }
  96.